Write a program of inverted right triangle pattern in python - Inverted Right Triangle Pattern program in python - Python Programs - Pattern programs in python By Vivek Bhardwaj March 15, 2023 Get link Facebook X Pinterest Email Other Apps Inverted Right Triangle PatternPython Code:# inverted right triangle patternn = 5for i in range(n): for j in range(n - i): print('*', end='') print('')Output************** *Here is the Practical of the above program in Jupyter Notebook Comments
Comments
Post a Comment